home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amigac / dice_c_demo / include / varargs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-09  |  286 b   |  17 lines

  1.  
  2. /*
  3.  * $VER: varargs.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef VARARGS_H
  9. #define VARARGS_H
  10. #ifndef STDARG_H
  11. #include <stdarg.h>
  12. #define va_dcl long va_alist;
  13. #define va_start(pvar)    (pvar = (void *)(&va_alist))
  14. #endif
  15. #endif
  16.  
  17.